fix: expose MinIO console UI on port 9001#979
Merged
pyramation merged 1 commit intomainfrom Apr 14, 2026
Merged
Conversation
- Add --console-address ':9001' to MinIO server command in both docker-compose.yml and pgpm docker start --minio - Map port 9001 for the MinIO Console web UI - Update env vars from deprecated MINIO_ACCESS_KEY/MINIO_SECRET_KEY to MINIO_ROOT_USER/MINIO_ROOT_PASSWORD - Align with constructive-hub docker-compose.yml configuration Without --console-address, MinIO assigns a random dynamic port for its console UI, causing the redirect from :9000 to a random port like :43589.
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes MinIO console UI being unreachable by pinning it to port 9001. Without
--console-address, modern MinIO assigns a random dynamic port for the console, so accessing:9000in a browser redirects to an unmapped random port (e.g.,:43589).Changes in both
docker-compose.ymlandpgpm docker start --minio:--console-address ":9001"to the MinIO server command9001from the container to the hostMINIO_ACCESS_KEY/MINIO_SECRET_KEYenv vars →MINIO_ROOT_USER/MINIO_ROOT_PASSWORDAligns with the existing
constructive-hub/docker-compose.ymlwhich already has these settings.Review & Testing Checklist for Human
pgpm docker start --miniocreates a container with both ports 9000 and 9001 mapped and the console is accessible athttp://localhost:9001curl http://localhost:9000/minio/health/live)Notes
docker-compose.ymlstill usesminio/minio(untagged latest) while CI usesminio/minio:edge-cicd— this is pre-existing and not changed here.MINIO_ROOT_USER/MINIO_ROOT_PASSWORDhave been the canonical env vars since MinIORELEASE.2021-04-22. The old names still work as fallbacks in most versions but log deprecation warnings.Link to Devin session: https://app.devin.ai/sessions/2095d9c144df4cd98da2d760016693a3
Requested by: @pyramation